-
-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes issue 4956: 'Linode DNS Pagination Bug' #5172
base: dev
Are you sure you want to change the base?
Conversation
fixes issue acmesh-official#4956 previous code only worked for the first 10 domains on the account (as Linode API returned a paginated response, with only 10 records). This change makes an exact search query for each subdomain, completely removing any need for walking through paginated responses. What makes it work for large accounts with any number of domains.
Welcome |
minor fix for text coherence
fix minor problems reported by shellcheck and shfmt
Can this be merged into dev, please? |
fixes issue #4956
previous code only worked for the first 10 domains on the account (as Linode API returned a paginated response, with only 10 records).
This change makes an exact search query for each subdomain, completely removing any need for walking through paginated responses. What makes it work for large accounts with any number of domains.